VB.net Thread 補足


メソッド全体をクリティカルセクションにするには、

<System.Runtime.CompilerServices.MethodImpl(Runtime.CompilerServices.MethodImplOptions.Synchronized)> _
Public Sub test()

End Sub



<System.Runtime.CompilerServices.MethodImpl(Runtime.CompilerServices.MethodImplOptions.Synchronized)> _
Private Function test() As String
	Return "test"
End Function



▲トップページ > Visual BASIC と C#